home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / datamake / main.dfm / main.txt
Encoding:
Text File  |  1995-12-22  |  3.6 KB  |  153 lines

  1. object Form1: TForm1
  2.   Left = 91
  3.   Top = 123
  4.   ActiveControl = DatabaseListbox
  5.   BorderIcons = [biSystemMenu, biMinimize]
  6.   BorderStyle = bsSingle
  7.   Caption = 'DataMake : Database Create Unit --- Code generator'
  8.   ClientHeight = 203
  9.   ClientWidth = 516
  10.   Font.Color = clBlack
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   PixelsPerInch = 96
  15.   Position = poScreenCenter
  16.   OnClose = FormClose
  17.   OnCreate = FormCreate
  18.   TextHeight = 13
  19.   object Label1: TLabel
  20.     Left = 6
  21.     Top = 6
  22.     Width = 54
  23.     Height = 13
  24.     Caption = '&Databases:'
  25.     FocusControl = DatabaseListbox
  26.   end
  27.   object Label2: TLabel
  28.     Left = 108
  29.     Top = 6
  30.     Width = 35
  31.     Height = 13
  32.     Caption = '&Tables:'
  33.     FocusControl = TableListbox
  34.   end
  35.   object Label3: TLabel
  36.     Left = 210
  37.     Top = 6
  38.     Width = 30
  39.     Height = 13
  40.     Caption = '&Fields:'
  41.     FocusControl = FieldListbox
  42.   end
  43.   object Label4: TLabel
  44.     Left = 312
  45.     Top = 6
  46.     Width = 40
  47.     Height = 13
  48.     Caption = '&Indexes:'
  49.     FocusControl = IndexListbox
  50.   end
  51.   object SpeedButton1: TSpeedButton
  52.     Left = 356
  53.     Top = 164
  54.     Width = 121
  55.     Height = 33
  56.     Caption = 'Generate'
  57.     Glyph.Data = {
  58.       78010000424D7801000000000000760000002800000020000000100000000100
  59.       04000000000000000000120B0000120B00000000000000000000000000000000
  60.       800000800000008080008000000080008000808000007F7F7F00BFBFBF000000
  61.       FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00370777033333
  62.       3330337F3F7F33333F3787070003333707303F737773333373F7007703333330
  63.       700077337F3333373777887007333337007733F773F333337733700070333333
  64.       077037773733333F7F37703707333300080737F373333377737F003333333307
  65.       78087733FFF3337FFF7F33300033330008073F3777F33F777F73073070370733
  66.       078073F7F7FF73F37FF7700070007037007837773777F73377FF007777700730
  67.       70007733FFF77F37377707700077033707307F37773F7FFF7337080777070003
  68.       3330737F3F7F777F333778080707770333333F7F737F3F7F3333080787070003
  69.       33337F73FF7377733333078000770333333373377733733333330000}
  70.     NumGlyphs = 2
  71.     OnClick = SpeedButton1Click
  72.   end
  73.   object Label5: TLabel
  74.     Left = 416
  75.     Top = 6
  76.     Width = 55
  77.     Height = 13
  78.     Caption = '&Selections :'
  79.     FocusControl = TableListbox
  80.   end
  81.   object DatabaseListbox: TListBox
  82.     Left = 6
  83.     Top = 24
  84.     Width = 95
  85.     Height = 131
  86.     ItemHeight = 13
  87.     Sorted = True
  88.     TabOrder = 0
  89.     OnClick = DatabaseListboxClick
  90.     OnDblClick = DatabaseListboxDblClick
  91.   end
  92.   object TableListbox: TListBox
  93.     Left = 108
  94.     Top = 24
  95.     Width = 95
  96.     Height = 131
  97.     ItemHeight = 13
  98.     Sorted = True
  99.     TabOrder = 1
  100.     OnClick = TableListboxClick
  101.     OnDblClick = TableListboxDblClick
  102.   end
  103.   object FieldListbox: TListBox
  104.     Left = 210
  105.     Top = 24
  106.     Width = 95
  107.     Height = 131
  108.     ItemHeight = 13
  109.     TabOrder = 2
  110.   end
  111.   object IndexListbox: TListBox
  112.     Left = 312
  113.     Top = 24
  114.     Width = 95
  115.     Height = 131
  116.     ItemHeight = 13
  117.     TabOrder = 3
  118.   end
  119.   object SelectionsListBox: TListBox
  120.     Left = 414
  121.     Top = 24
  122.     Width = 95
  123.     Height = 131
  124.     ItemHeight = 13
  125.     TabOrder = 4
  126.     OnDblClick = SelectionsListBoxDblClick
  127.   end
  128.   object Panel1: TPanel
  129.     Left = 16
  130.     Top = 160
  131.     Width = 297
  132.     Height = 37
  133.     Caption = 'Panel1'
  134.     TabOrder = 5
  135.     object Label6: TLabel
  136.       Left = 12
  137.       Top = 4
  138.       Width = 265
  139.       Height = 29
  140.       AutoSize = False
  141.       Caption = 
  142.         'Double click in the "Tables" list to add a new selection to be c' +
  143.         'reated.    Then click "Generate".'
  144.     end
  145.   end
  146.   object Table: TTable
  147.     DatabaseName = 'DBDEMOS'
  148.     TableName = 'BIOLIFE.DB'
  149.     Left = 30
  150.     Top = 36
  151.   end
  152. end
  153.